-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure MacCatalyst default http handler is the same as iOS #52229
Ensure MacCatalyst default http handler is the same as iOS #52229
Conversation
Tagging subscribers to this area: @dotnet/ncl Issue Details
|
For MacCatalyst, the Xamarin.iOS type forwards into Xamarin.MacCatalyst, so I believe this will work correctly. /cc @rolfbjarne |
The Xamarin.iOS assembly shipped for Xamarin.MacCatalyst is a compatibility assembly so that existing assemblies built for Xamarin.iOS work as well as possible. New code should target Xamarin.MacCatalyst, and not rely on this compatibility behavior. |
|
||
if (handlerMethod == null) | ||
{ | ||
Type? runtimeOptions = Type.GetType("ObjCRuntime.RuntimeOptions, Xamarin.iOS"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The assembly name needs to be updated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm losing my mind... I updated the wrong file ;-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW LGTM
No description provided.